Gap + Order Blocks1️⃣ What the script does:
A. Price Gaps:
Detects a candle whose low is higher than the previous candle’s high → Bullish Gap.
Detects a candle whose high is lower than the previous candle’s low → Bearish Gap.
Users can choose:
Limited Extension: the rectangle only spans a set number of candles.
Infinite Extension: the rectangle automatically extends to the end of the chart.
B. Order Blocks (simplified version):
Bullish OB: the last bearish candle before a strong upward move.
Bearish OB: the last bullish candle before a strong downward move.
Drawn as colored rectangles for easy visualization of potential buy/sell zones.
2️⃣ Benefits of the script:
All gaps and OBs are drawn automatically on the chart.
Customizable colors for quick recognition of different zones.
Full control over gap extensions and OB length.
Suitable for both beginner and advanced traders.
חפש סקריפטים עבור "THE SCRIPT"
7 EMA CloudThe "7 EMA Cloud" script was likely flagged because it reuses the core concept of EMA clouds (shading areas between multiple EMAs to visualize trends, support/resistance, and momentum) without crediting the original inventor, Ripster (author ripster47 on TradingView). This concept is prominently associated with Ripster's "EMA Clouds" indicator, which popularized filling spaces between EMA pairs for trading signals. TradingView's house rules require crediting authors when reusing open-source ideas or code, even if not a direct copy-paste, and mandate significant improvements where the original forms a small proportion of the script. Your version adds features like multiple color modes (Classic rainbow, Monochrome, Heatmap), customizable signal sizes, and crossover alerts between the first and last EMA, which are enhancements, but the foundational EMA ribbon/cloud idea needs explicit attribution in the description and ideally code comments to comply.
Additionally, the description might be seen as not fully self-contained (e.g., it uses promotional language like "Advanced" and "Adaptive Trend & Signal Suite" without deeply explaining calculations or use cases), potentially violating rules against relying on code or external references for clarity.
To fix this, republish a new version with proper credits, ensure the description is detailed and standalone, and emphasize your improvements (e.g., the 7 Fibonacci-based EMAs, color modes, and signals). Do not reuse the flagged script—create a fresh one. Here's a compliant description you can use:
7 EMA Cloud Indicator
Overview
The 7 EMA Cloud overlays seven exponential moving averages (EMAs) with Fibonacci-inspired periods and fills the spaces between them with customizable "clouds" to visually represent trend strength, direction, and convergence/divergence. It includes crossover signals between the shortest and longest EMAs for potential entry/exit points, with adjustable visual modes for different trading styles. This helps traders identify bullish/bearish momentum, support/resistance zones, and overextensions in trending or ranging markets.
This script builds on the EMA cloud concept popularized by Ripster (ripster47) in their "EMA Clouds" indicatortradingview.com, where areas between EMA pairs are shaded for trend analysis. Improvements include a fixed set of 7 Fibonacci EMAs, multiple color schemes (Classic rainbow, Monochrome grayscale, Heatmap for intensity), user-selectable signal sizes, and transparency controls. Released under the Mozilla Public License 2.0.
Key Features
7 EMAs with Clouds: EMAs at periods 8, 13, 21, 34, 55, 89, and 144; clouds filled between consecutive pairs to show alignment (tight clouds for consolidation, wide for trends).
Color Modes:
Classic: Rainbow gradients (blue to purple) for vibrant distinction.
Monochrome: Grayscale shades for minimalistic charts.
Heatmap: Red-to-blue spectrum to highlight "hot" (volatile) vs. "cool" (stable) areas.
Crossover Signals: Triangle markers (up for bullish, down for bearish) when the shortest EMA crosses the longest; sizes from Tiny to Huge.
Display Options: Toggle EMA lines on/off, adjust cloud transparency (0-100%), and enable alerts for crossovers.
Alerts: Notifications for "Bullish EMA Crossover" (EMA1 > EMA7) and "Bearish EMA Crossover" (EMA1 < EMA7).
How It Works
EMA Calculations: Each EMA is computed using ta.ema(close, period), with periods based on Fibonacci sequences for natural market rhythm alignment.
Clouds: Filled via fill() between plot pairs, with colors derived from the selected mode and transparency applied.
Signals: Detected with ta.crossover(ema1, ema7) and ta.crossunder(ema1, ema7), plotted as shapes with mode-specific colors (e.g., green/lime for bull, red for bear).
Customization: Inputs grouped into EMA Settings (periods), Display Settings (visibility, colors, transparency), and Signal Settings (size).
Customization Options
EMA Periods: Individually adjustable (defaults: 8, 13, 21, 34, 55, 89, 144).
Show EMAs: Toggle to hide lines and focus on clouds.
Cloud Transparency: 0% for solid fills, 100% for invisible (default 80%).
Color Mode: Switch between Classic, Monochrome, or Heatmap.
Signal Size: Tiny, Small, Normal, Large, or Huge for crossover markers.
Ideal Use Case
Suited for swing or trend-following on any timeframe (e.g., 15m-1h for intraday, daily for swings) and assets (stocks, forex, crypto, futures). Enter long on bullish crossovers above aligned clouds; exit on bearish signals or cloud widenings. Use Monochrome for clean charts or Heatmap for volatility emphasis. Combine with volume or RSI for confirmation.
Why It's Valuable
By expanding Ripster's EMA cloud idea with multi-mode visuals and integrated signals, this indicator provides a versatile, at-a-glance tool for trend assessment—reducing noise while highlighting key shifts. It's more adaptive than basic MA ribbons, with Fibonacci periods adding a layer of harmonic analysis.
Note: Test on historical data or demo accounts. Not financial advice—incorporate risk management. Optimized for Pine Script v5; some features may vary on non-overlay charts.
UT Bot + LinReg Candles (Dual Sensitivity) 
  
Script Description:
This indicator combines the popular UT Bot Alerts system with Linear Regression Candles (open source) for enhanced trend detection and trading signals in one singel script. The UT Bot features independent, then 2 x  ATR sensitivity and periods controls for buy and sell signals, allowing you to fine-tune entries and exits to match your strategy. The script also overlays colored Linear Regression Candles with an optional signal line, helping you visually identify trend strength and direction. All calculations are performed on standard chart prices (no Heikin Ashi). Suitable for all asset classes and timeframes. 
Eample setting for usdjpy 5 min chart for repeated buy and sell singnals based on trend:
BUY ATR period 300 multiplier 1
SELL ATR period 1 multiplier 2
Disclaimer:
This script is for informational and educational purposes only. It is not financial advice. Use at your own risk; the author assumes no responsibility for any trading results or losses.
Credits goes to to Ugurvu for linreg  candles and quantnomad for UT Bot alerts that make this script possible.
Author: Patrick
Dynamic Gap Probability ToolDynamic Gap Probability Tool measures the percentage gap between price and a chosen moving average, then analyzes your chart history to estimate the likelihood of the next candle moving up or down. It dynamically adjusts its sample size to ensure statistical robustness while focusing on the exact deviation level.
Originality and Value:
• Combines gap-based analysis with dynamic sample aggregation to balance precision and reliability.  
• Automatically extends the sample when exact matches are scarce, avoiding misleading signals on rare extreme moves.  
• Provides real “next-candle” probabilities based on historical occurrences rather than fixed thresholds or untested heuristics.  
• Adds value by giving traders an evidence-based edge: you see how similar past deviations actually played out.
How It Works:
1. Calculate gap = (close – moving average) / moving average * 100.  
2. Round the absolute gap to nearest percent (X%).  
3. Count historical bars where gap ≥ X% above or ≤ –X% below.  
4. If exact X% count is below the minimum occurrences threshold, include gaps at X+1%, X+2%, etc., until threshold is reached.  
5. Compute “next-candle” green vs. red probabilities from the aggregated sample.  
6. Display current gap, sample size, green probability, and red probability in a table.
Inputs:
• Moving Average Type (SMA, EMA, WMA, VWMA, HMA, SMMA, TMA)  
• Moving Average Period (default 200)  
• Minimum Occurrences Threshold (default 50)  
• Table position and styling options
Examples:
• If price is 3% above the 200-period SMA and 120 occurrences ≥3% are found, with 84 green next candles (70%) and 36 red (30%), the script displays “3% | 120 | 70% green | 30% red.”  
• If price is 8% below the SMA but only 20 exact matches exist, the script will include 9% and 10% gaps until it reaches 50 samples, then calculate probabilities from that broader set.
Why It’s Useful:
• Mean-reversion traders see green-probability signals at extreme overbought or oversold levels.  
• Trend-followers identify continuation likelihood when red probability is high.  
• Risk managers gauge reliability by inspecting sample size before acting on any signal.
Limitations:
• Historical probabilities do not guarantee future performance.  
• Results depend on timeframe and symbol, backtest with your data before trading.  
• Use realistic slippage and commission when overlaying on strategy scripts.
Divergence Screener [Trendoscope®]🎲Overview 
The  Divergence Screener  is a powerful TradingView indicator designed to detect and visualize bullish and bearish divergences, including hidden divergences, between price action and a user-selected oscillator. Built with flexibility in mind, it allows traders to customize the oscillator type, trend detection method, and other parameters to suit various trading strategies. The indicator is non-overlay, displaying divergence signals directly on the oscillator plot, with visual cues such as lines and labels on the chart for easy identification.
This indicator is ideal for traders seeking to identify potential reversal or continuation signals based on price-oscillator divergences. It supports multiple oscillators, trend detection methods, and alert configurations, making it versatile for different markets and timeframes.
 🎲Features 
 🎯Customizable Oscillator Selection 
 
 Built-in Oscillators : Choose from a variety of oscillators including RSI, CCI, CMO, COG, MFI, ROC, Stochastic, and WPR.
 External Oscillator Support : Users can input an external oscillator source, allowing integration with custom or third-party indicators.
 Configurable Length : Adjust the oscillator’s period (e.g., 14 for RSI) to fine-tune sensitivity.
 
  
 🎯Divergence Detection 
The screener identifies four types of divergences:
 
 Bullish Divergence : Price forms a lower low, but the oscillator forms a higher low, signaling potential upward reversal.
 Bearish Divergence : Price forms a higher high, but the oscillator forms a lower high, indicating potential downward reversal.
 Bullish Hidden Divergence : Price forms a higher low, but the oscillator forms a lower low, suggesting trend continuation in an uptrend.
 Bearish Hidden Divergence : Price forms a lower high, but the oscillator forms a higher high, suggesting trend continuation in a downtrend.
 
  
  
 🎯Flexible Trend Detection 
 
 The indicator offers three methods to determine the trend context for divergence detection:
 Zigzag : Uses zigzag pivots to identify trends based on higher highs (HH), higher lows (HL), lower highs (LH), and lower lows (LL).
 MA Difference : Calculates the trend based on the difference in a moving average (e.g., SMA, EMA) between divergence pivots.
 External Trend Signal : Allows users to input an external trend signal (positive for uptrend, negative for downtrend) for custom trend analysis.
 
  
 🎯Zigzag-Based Pivot Analysis 
 
 Customizable Zigzag Length : Adjust the zigzag length (default: 13) to control the sensitivity of pivot detection.
 Repaint Option : Choose whether divergence lines repaint based on the latest data or wait for confirmed pivots, balancing responsiveness and reliability.
 
 🎯Visual and Alert Features 
 
 Divergence Visualization : Divergence lines are drawn between price pivots and oscillator pivots, color-coded for easy identification:
 
 Bullish Divergence : Green
 Bearish Divergence : Red
 Bullish Hidden Divergence : Lime
 Bearish Hidden Divergence : Orange
 
 Labels and Tooltips : Labels (e.g., “D” for divergence, “H” for hidden) appear on price and oscillator pivots, with tooltips providing detailed information such as price/oscillator values, ratios, and pivot directions.
   Alerts : Configurable alerts for each divergence type (bullish, bearish, bullish hidden, bearish hidden) trigger on bar close, ensuring timely notifications.
 
  
 🎲 How It Works 
 🎯Oscillator Calculation 
 
 The indicator calculates the selected oscillator (or uses an external source) and plots it on the chart.
 Oscillator values are stored in a map for reference during divergence calculations.
 
 🎯Pivot Detection 
 
 A zigzag algorithm identifies pivots in the oscillator data, with configurable length and repainting options.
 Price and oscillator pivots are compared to detect divergences based on their direction and ratio.
 
 🎯Divergence Identification 
 
 The indicator compares price and oscillator pivot directions (HH, HL, LH, LL) to identify divergences.
 Trend context is determined using the selected method (Zigzag, MA Difference, or External).
 Divergences are classified as bullish, bearish, bullish hidden, or bearish hidden based on price-oscillator relationships and trend direction.
 
 🎯Visualization and Alerts 
 
 Valid divergences are drawn as lines connecting price and oscillator pivots, with corresponding labels.
 Alerts are triggered for allowed divergence types, providing detailed information via tooltips.
 
 🎯Validation 
Divergence lines are validated to ensure no intermediate bars violate the divergence condition, enhancing signal reliability.
 🎲 Usage Instructions as Indicator 
 🎯Add to Chart: 
 
 Add the “Divergence Screener  ” to your TradingView chart.
 The indicator appears in a separate pane below the price chart, plotting the oscillator and divergence signals.
 
 🎯Configure Settings: 
 
 Adjust the oscillator type and length to match your trading style.
 Select a trend detection method and configure related parameters (e.g., MA type/length or external signal).
 Set the zigzag length and repainting preference.
 Enable/disable alerts for specific divergence types.
 
 I🎯nterpret Signals: 
 
 Bullish Divergence (Green) : Look for potential buy opportunities in a downtrend.
 Bearish Divergence (Red) : Consider sell opportunities in an uptrend.
 Bullish Hidden Divergence (Lime) : Confirm continuation in an uptrend.
 Bearish Hidden Divergence (Orange): Confirm continuation in a downtrend.
 Use tooltips on labels to review detailed pivot and divergence information.
 
 🎯Set Alerts: 
 
 Create alerts for each divergence type to receive notifications via TradingView’s alert system.
 Alerts include detailed text with price, oscillator, and divergence information.
 
 🎲 Example Scenarios as Indicator 
 🎯 With External Oscillator (Use MACD Histogram as Oscillator) 
In order to use MACD as an oscillator for divergence signal instead of the built in options, follow these steps.
 
  Load MACD Indicator from Indicator library
  From Indicator settings of Divergence Screener, set  Use External Oscillator  and select MACD Histograme from the dropdown
  You can now see that the oscillator pane shows the data of selected MACD histogram and divergence signals are generated based on the external MACD histogram data.
 
  
 🎯 With External Trend Signal (Supertrend Ladder ATR) 
Now let's demonstrate how to use external direction signals using  Supertrend Ladder ATR  indicator. Please note that in order to use the indicator as trend source, the indicator should return positive integer for uptrend and negative integer for downtrend. Steps are as follows:
 
  Load the desired trend indicator. In this example, we are using  Supertrend Ladder ATR 
  From the settings of Divergence Screener, select "External" as Trend Detection Method
  Select the trend detection plot Direction from the dropdown. You can now see that the divergence signals will rely on the new trend settings rather than the built in options.
 
  
 🎲 Using the Script with Pine Screener 
The primary purpose of the Divergence Screener is to enable traders to scan multiple instruments (e.g., stocks, ETFs, forex pairs) for divergence signals using TradingView’s Pine Screener, facilitating efficient comparison and identification of trading opportunities.
To use the Divergence Screener as a screener, follow these steps:
 
 Add to Favorites : Add the Divergence Screener   to your TradingView favorites to make it available in the Pine Screener.
 Create a Watchlist : Build a watchlist containing the instruments (e.g., stocks, ETFs, or forex pairs) you want to scan for divergences.
 Access Pine Screener : Navigate to the Pine Screener via TradingView’s main menu: Products -> Screeners -> Pine, or directly visit tradingview.com/pine-screener/.
 Select Watchlist : Choose the watchlist you created from the Watchlist dropdown in the Pine Screener interface.
 Choose Indicator : Select Divergence Screener   from the Choose Indicator dropdown.
 Configure Settings : Set the desired timeframe (e.g., 1 hour, 1 day) and adjust indicator settings such as oscillator type, zigzag length, or trend detection method as needed.
 Select Filter Criteria : Select the condition on which the watchlist items needs to be filtered. Filtering can only be done on the plots defined in the script.
 Run Scan : Press the Scan button to display divergence signals across the selected instruments. The screener will show which instruments exhibit bullish, bearish, bullish hidden, or bearish hidden divergences based on the configured settings.
 
  
 🎲 Limitations and Possible Future Enhancements 
Limitations are
 
  Custom input for oscillator and trend detection cannot be used in pine screener.
  Pine screener has max 500 bars available.
  Repaint option is by default enabled. When in repaint mode expect the early signal but the signals are prone to repaint.
 
Possible future enhancements
 
  Add more built-in options for oscillators and trend detection methods so that dependency on external indicators is limited
  Multi level zigzag support
Opening Range Breakout (ORB) with Fib RetracementOverview
“ORB with Fib Retracement” is a Pine Script indicator that anchors a full Fibonacci framework to the first minutes of the trading day (the opening-range breakout, or ORB).
After the ORB window closes the script:
Locks-in that session’s high and low.
Calculates a complete ladder of Fibonacci retracement levels between them (0 → 100 %).
Projects symmetric extension levels above and below the range (±1.618, ±2.618, ±3.618, ±4.618 by default).
Sub-divides every extension slice with additional 23.6 %, 38.2 %, 50 %, 61.8 % and 78.6 % mid-lines so each “zone” has its own inner fib grid.
Plots the whole structure and—optionally—extends every line into the future for ongoing reference.
 
  **Session time / timezone** – Defines the ORB window (defaults 09:30–09:45 EST).
  **Show All Fib Levels** – Toggles every retracement and extension line on or off.
  **Show Extended Lines** – Draws dotted, extend-right projections of every level.
  **Color group** – Assigns colors to buy-side (green), sell-side (red), and internal fibs (gray).
  **Extension value inputs** – Allows custom +/- 1.618 to 4.618 fib levels for personalized projection zones.
EMA 200 Monitor - Bybit CoinsEMA 200 Monitor - Bybit Coins
📊 OVERVIEW
The EMA 200 Monitor - Bybit Coins is an advanced indicator that automatically monitors 30 of the top cryptocurrencies traded on Bybit, alerting you when they are close to the 200-period Exponential Moving Average on the 4-hour timeframe.
This indicator was developed especially for traders who use the EMA 200 as a key support/resistance level in their swing trading and position trading strategies.
🎯 WHAT IT'S FOR
Multi-Asset Monitoring: Simultaneous monitoring of 30 cryptocurrencies without having to switch between charts
Opportunity Identification: Detects when coins are approaching the 200 EMA, a crucial technical level
Automated Alerts: Real-time notifications when a coin reaches the configured proximity
Time Efficiency: Eliminates the need to manually check chart collections
⚙️ HOW IT WORKS
Main Functionality
The indicator uses the request.security() function to fetch price data and calculate the 200 EMA of each monitored asset. With each new bar, the script:
Calculates the distance between the current price and the 200 EMA for each coin
Identifies proximity based on the configured percentage (default: 2%)
Displays results in a table organized on the chart
Generates automatic alerts when proximity is detected
Monitored Coins
Major : BTC, ETH, BNB, ADA, XRP, SOL, DOT, DOGE, AVAX
DeFi : UNI, LINK, ATOM, ICP, NEAR, OP, ARB, INJ
Memecoins : SHIB, PEPE, WIF, BONK, FLOKI
Emerging : SUI, TON, APT, POL (ex-MATIC)
📋 AVAILABLE SETTINGS
Adjustable Parameters
EMA Length (Default: 200): Exponential Moving Average Period
Proximity Percentage (Default: 2%): Distance in percentage to consider "close"
Show Table (Default: Active): Show/hide results table
Table Position: Position of the table on the chart (9 options available)
Color System
🔴 Red: Distance ≤ 1% (very close)
🟠 Orange: Distance ≤ 1.5% (close)
🟡 Yellow: Distance ≤ 2% (approaching)
🚀 HOW TO USE
Initial Configuration
Add the indicator to the 4-hour timeframe chart
Set the parameters according to your strategy
Position the table where there is no graphic preference
Setting Alerts
Click "Create Alert" in TradingView
Select the "EMA 200 Monitor" indicator
Set the notification frequency and method
Activate the alert to receive automatic notifications
Results Interpretation
The table shows:
Coin: Asset name (e.g. BTC, ETH)
Price: Current currency quote
EMA 200: Current value of the moving average
Distance: Percentage of proximity to the core code
💡 STRATEGIES TO USE
Reversal Trading
Entry: When price touches or approaches the EMA 200
Stop: Below/above the EMA with a safety margin
Target: Previous resistance/support levels
Breakout Trading
Monitoring: Watch for currencies consolidating near the EMA 200
Entry: When the media is finally broken
Confirmation: Volume and close above/below the EMA
Swing Trading
Identification: Use the monitor to detect setups in formation
Timing: Wait for the EMA 200 to approach for detailed analysis
Management: Use the EMA as a reference for stops dynamics
⚠️ IMPORTANT CONSIDERATIONS
Technical Limitations
Request Bybit data: Access to exchange symbols required
Specific timeframe: Optimized for 4-hour analysis
Minimum delay: Data updated with each new bar
Usage Recommendations
Combine with technical analysis: Use together with other indicators
Confirm the configuration: Check the graphic patterns before trading
Manage risk: Always use stop loss and adequate position sizing
Backtesting: Test your strategy before applying with real capital
Disclaimer
This indicator is a technical analysis tool and does not constitute investment advice. Always do your own analysis and manage detailed information about the risks of your operations.
🔧 TECHNICAL INFORMATION
Pine Script version: v6
Type: Indicator (overlay=true)
Compatibility: All TradingView plans
Resources used: request.security(), arrays, tables
Performance: Optimized for multiple simultaneous queries
📈 COMPETITIVE ADVANTAGES
✅ Simultaneous monitoring of 30 major assets ✅ Clear visual interface with intuitive core system ✅ Customizable alerts for different details ✅ Optimized code for maximum performance ✅ Flexible configuration adaptable to different strategies ✅ Real-time update without the need for manual refresh
Developed for traders who value efficiency and accuracy in identifying market opportunities based on the EMA 20
Tight Range Display with Background🌟 Tight Range Transparency Display with Background
What Is This Indicator?
Hey traders! Ever wanted a simple way to spot those quiet, low-volatility moments in the market that often signal a big move is coming? The Tight Range Transparency Display with Background does exactly that! This indicator highlights periods where the price is moving in a tight range—think of it as the calm before the storm. It paints the chart background blue to show these zones, with the shade getting darker the tighter the range becomes. It’s like having a visual cue to say, “Hey, something might be brewing here!”
Why You’ll Love It
    Spot Key Moments Easily: The blue background makes it super easy to see when the market is in a tight range, which often happens before breakouts or big trends.
    Customizable Settings: You can tweak the range thresholds to match your trading style—whether you’re looking for super tight zones or slightly broader ones.
    Visual Clarity: The background gets darker when the range is tighter, giving you a quick sense of how compressed the price action is.
    Perfect for Any Market: Works on stocks, forex, crypto, or any chart you trade, across any timeframe.
How to Use It
    Add It to Your Chart:
        Just copy this script into TradingView’s Pine Editor and hit "Add to Chart." It’ll overlay right on your price chart.
    Tweak the Settings:
        Open the indicator settings and use the dropdown menus to pick your preferred "Tight Range %" and "Wide Range %." For example, set a Tight Range % of 2.0% to catch smaller ranges, or go higher like 10.0% for broader ones.
        You can also adjust the ATR Period (default is 5) to make the indicator more or less sensitive to recent price swings.
    Watch for the Blue Background:
        When the price enters a tight range, the chart background turns blue. The darker the blue, the tighter the range—meaning a potential breakout could be closer!
    Trade Smarter:
        Use these tight range zones to prepare for potential breakouts. For example, if you see a dark blue background, it might be a good time to watch for a big price move.
        Pair this with other tools like support/resistance levels or volume spikes to confirm your trades.
Who Is This For?
    Swing Traders: Perfect for spotting consolidation zones before a big swing.
    Breakout Traders: Tight ranges often lead to breakouts—use this to time your entries.
    Smart Money Followers: If you’re into smart money concepts, tight ranges can signal accumulation or distribution phases.
    Beginners & Pros Alike: It’s easy to use for new traders but powerful enough for seasoned pros.
Real-World Example
Imagine you’re trading a stock on a 1-hour chart. You notice the background turns blue, and it’s getting darker over a few bars. This tells you the price range is tightening—maybe the stock is consolidating after a big move. You check your other indicators, see a volume spike, and spot a breakout above resistance. Boom! You catch the next big trend, all because this indicator helped you focus on the right moment.
Tips for Best Results
    Try Different Timeframes: Tight ranges on a 15-minute chart might signal short-term moves, while a daily chart could highlight bigger trends.
    Adjust for Your Market: For volatile markets like crypto, you might want a higher Tight Range % (e.g., 10.0%). For calmer markets like forex, try a lower setting (e.g., 2.0%).
    Combine with Other Tools: Use this alongside trendlines, moving averages, or volume indicators to confirm your setups.
Why I Made This
I created this indicator because I wanted a simple, visual way to spot those critical low-volatility zones without cluttering my chart. The dynamic background color makes it intuitive to see when the market is “coiling up” for a potential move. I hope it helps you find better trading opportunities just like it does for me!
Let’s Connect
If you find this indicator helpful, I’d love to hear about it! Drop a comment or a rating to let me know how it’s working for you. Got ideas to make it even better? Feel free to message me on TradingView—I’m always open to suggestions.
Published On
    Date: May 22, 2025
Happy trading, and may your charts always be in your favor! 🚀
How to Publish on TradingView
    Open Pine Editor:
        On TradingView, open a chart and go to the Pine Editor tab at the bottom.
    Paste the Code:
        Copy the script you provided and paste it into the Pine Editor.
    Compile:
        Click "Add to Chart" to ensure it compiles without errors.
    Publish:
        Click the "Publish Script" button (paper plane icon) in the Pine Editor.
        Select "Publish New Script."
    Add the Description:
        Title: "Tight Range Transparency Display with Background"
        Description: Copy the content above into the description field.
        Visibility: Choose "Public" to share with everyone (or "Invite-Only" for restricted access).
        Tags: Add tags like "tight range", "breakout", "smart money", "volatility", "swing trading".
        Screenshot: Add a screenshot of the indicator on a chart, showing the blue background during a tight range.
    Submit:
        Click "Publish" to submit. TradingView will review it and make it live if it meets their guidelines.
Additional Notes
    Screenshot Tip: Use a chart where the blue background is clearly visible (e.g., during a consolidation period) to make the indicator’s effect stand out.
    Engage with Users: After publishing, respond to comments and feedback to build a positive reputation on TradingView.
This content is designed to be approachable and engaging, helping traders understand the value of your indicator and encouraging them to try it out.
Uwen FX: UWEN StrategyThis Pine Script defines a trading indicator called "Uwen FX: UWEN Strategy" Where ideas coming from Arab Syaukani and modified by Fiki Hafana. It combines a CCI-based T3 Smoothed Indicator with a MACD overlay. Here's a breakdown of what it does:
Key Components of the Script:
1. CCI (Commodity Channel Index) with T3 Smoothing
Uses a T3 smoothing algorithm on the CCI to generate a smoother momentum signal. The smoothing formula is applied iteratively using weighted averages. The final result (xccir) is plotted as a histogram, colored green for bullish signals and red for bearish signals.
2. MACD (Moving Average Convergence Divergence)
The MACD is scaled to match the range of the smoothed CCI for better visualization. Signal Line and MACD Line are plotted if showMACD is enabled. The normalization ensures that MACD values align with the CCI-based indicator.
3. Bar Coloring for Trend Indication
Green bars indicate a positive trend (pos = 1).
Red bars indicate a negative trend (pos = -1).
Blue bars appear when the trend is neutral.
How It Can Be Used:
Buy Signal: When the xccir (smoothed CCI) turns green, indicating bullish momentum.
Sell Signal: When xccir turns red, indicating bearish momentum.
MACD Confirmation: Helps confirm the trend direction by aligning with xccir.
I will add more interesting features if this indicator seems profitable
Auto Fib Retracement with Buy/SellKey Features of the Advanced Script:
Multi-Timeframe (MTF) Analysis:
We added an input for the higher timeframe (higher_tf), where the trend is checked on a higher timeframe to confirm the primary trend direction.
Complex Trend Detection:
The trend is determined not only by the current timeframe but also by the trend on the higher timeframe, giving a more comprehensive and reliable signal.
Dynamic Fibonacci Levels:
Fibonacci lines are plotted dynamically, extending them based on price movement, with the Fibonacci retracement drawn only when a trend is identified.
Background Color & Labels:
A background color is added to give a clear indication of the trend direction. Green for uptrend, red for downtrend. It makes it visually easier to understand the current market structure.
"Buy" or "Sell" labels are shown directly on the chart to mark possible entry points.
Strategy and Backtesting:
The script includes strategy commands (strategy.entry and strategy.exit), which allow for backtesting the strategy in TradingView.
Stop loss and take profit conditions are added (loss=100, profit=200), which can be adjusted according to your preferences.
Next Steps:
Test with different timeframes: Try changing the higher_tf to different timeframes (like "60" or "240") and see how it affects the trend detection.
Adjust Fibonacci settings: Modify how the Fibonacci levels are calculated or add more Fibonacci levels like 38.2%, 61.8%, etc.
Optimize Strategy Parameters: Fine-tune the entry/exit logic by adjusting stop loss, take profit, and other strategy parameters.
This should give you a robust foundation for creating advanced trend detection strategies
Cryptolabs Global Liquidity Cycle Momentum IndicatorCryptolabs Global Liquidity Cycle Momentum Indicator (LMI-BTC)  
This open-source indicator combines global central bank liquidity data with Bitcoin price movements to identify medium- to long-term market cycles and momentum phases. It is designed for traders who want to incorporate macroeconomic factors into their Bitcoin analysis.
How It Works  
The script calculates a Liquidity Index using balance sheet data from four central banks (USA: ECONOMICS:USCBBS, Japan: FRED:JPNASSETS, China: ECONOMICS:CNCBBS, EU: FRED:ECBASSETSW), augmented by the Dollar Index (TVC:DXY) and Chinese 10-year bond yields (TVC:CN10Y). This index is:  
- Logarithmically scaled (math.log) to better represent large values like central bank balances and Bitcoin prices.  
- Normalized over a 50-period range to balance fluctuations between minimum and maximum values.  
- Compared to prior-year values, with the number of bars dynamically adjusted based on the timeframe (e.g., 252 for 1D, 52 for 1W), to compute percentage changes.  
The liquidity change is analyzed using a Chande Momentum Oscillator (CMO) (period: 24) to measure momentum trends. A Weighted Moving Average (WMA) (period: 10) acts as a signal line. The Bitcoin price is also plotted logarithmically to highlight parallels with liquidity cycles.
Usage  
Traders can use the indicator to:  
- Identify global liquidity cycles influencing Bitcoin price trends, such as expansive or restrictive monetary policies.  
- Detect momentum phases: Values above 50 suggest overbought conditions, below -50 indicate oversold conditions.  
- Anticipate trend reversals by observing CMO crossovers with the signal line.  
It performs best on higher timeframes like daily (1D) or weekly (1W) charts. The visualization includes:  
- CMO line (green > 50, red < -50, blue neutral), signal line (white), Bitcoin price (gray).  
- Horizontal lines at 50, 0, and -50 for improved readability.  
Originality  
This indicator stands out from other momentum tools like RSI or basic price analysis due to:  
- Unique Data Integration: Combines four central bank datasets, DXY, and CN10Y as macroeconomic proxies for Bitcoin.  
- Dynamic Prior-Year Analysis: Calculates liquidity changes relative to historical values, adjustable by timeframe.  
- Logarithmic Normalization: Enhances visibility of extreme values, critical for cryptocurrencies and macro data.  
This combination offers a rare perspective on the interplay between global liquidity and Bitcoin, unavailable in other open-source scripts.
Settings  
- CMO Period: Default 24, adjustable for faster/slower signals.  
- Signal WMA: Default 10, for smoothing the CMO line.  
- Normalization Window: Default 50 periods, customizable.  
Users can modify these parameters in the Pine Editor to tailor the indicator to their strategy.
Note  
This script is designed for medium- to long-term analysis, not scalping. For optimal results, combine it with additional analyses (e.g., on-chain data, support/resistance levels). It does not guarantee profits but supports informed decisions based on macroeconomic trends.
Data Sources  
- Bitcoin: INDEX:BTCUSD  
- Liquidity: ECONOMICS:USCBBS, FRED:JPNASSETS, ECONOMICS:CNCBBS, FRED:ECBASSETSW  
- Additional: TVC:DXY, TVC:CN10Y
VMA [Extreme Advanced Custom Table for BTCUSD]This indicator implements a Variable Moving Average (VMA) with a 33-period length—selected in homage to the Tesla 369 concept—to dynamically adjust to market conditions. It not only calculates the adaptive VMA but also displays a custom table of key metrics directly on the chart. Here’s how to use it:
Apply to Your Chart:
Add the indicator to your chart (optimized for BTCUSD, though it can be used on other symbols) and choose your desired source (e.g., close).
Customize Your Visuals:
Trend & Price Lines: Toggle the trend colors, price line, and bar coloring based on the VMA’s direction.
Channels & Slope: Enable the volatility channel and slope line to visualize market volatility and the VMA’s momentum.
Pivot Points & Super VMA: Activate pivot high/low markers for potential reversal points and a Super VMA (SMA of VMA) for an extra smoothing layer.
Table Customization: Adjust the table’s position, colors, and font sizes as needed for your viewing preference.
Monitor Key Metrics:
The dynamic table displays essential information:
VMA Value & Trend: See the current VMA and whether the trend is Bullish, Bearish, or Neutral.
Volatility Index (vI) & Slope: Quickly assess market volatility and the VMA’s slope (both absolute and percentage).
Price-VMA Difference & Correlation: Evaluate how far the price is from the VMA and its correlation.
Higher Timeframe VMA: Compare the current VMA with its higher timeframe counterpart (set via the “Higher Timeframe” input).
Alerts for Key Conditions:
Built-in alert conditions notify you when:
The trend changes (bullish/bearish).
The VMA slope becomes extreme.
The price and VMA correlation falls below a defined threshold.
The VMA crosses its higher timeframe average.
How to Use the Script:
Add to Your Chart:
Open TradingView and apply the indicator to your BTCUSD (or any other) chart.
The indicator will overlay on your chart, plotting the VMA along with optional elements such as the price line, volatility channels, and higher timeframe VMA.
Customize Your Settings:
Inputs:
Choose your data source (e.g., close price).
Adjust the VMA length (default is 33) if desired.
Visual Options:
Toggle trend colors, bar coloring, and additional visuals (price line, volatility channels, slope line, pivot points, and Super VMA) to suit your trading style.
Table Customization:
Set the table position, colors, border width, and font size to ensure key metrics are easily visible.
Higher Timeframe:
You can change the higher timeframe input (default is Daily) to better fit your analysis routine.
Interpret the Indicator:
Trend Analysis:
Watch the color-coded VMA line. A rising (orange) VMA suggests bullish momentum, while a falling (red) one indicates bearish conditions.
What Sets This Script Apart:
Dynamic Adaptation:
Unlike a fixed-period moving average, the VMA adjusts its sensitivity in real time by integrating a volatility measure, making it more adaptive to market swings.
Multi-Layered Analysis:
With integrated volatility channels, pivot points, slope analysis, and a higher timeframe VMA, this tool gives you a fuller picture of market dynamics.
Immediate Data at a Glance:
The real-time table consolidates multiple key metrics into one view, saving time and reducing the need for additional indicators.
Custom Alerts:
Pre-built alert conditions allow for timely notifications, ensuring you don’t miss critical market changes.
Live Portfolio P<his script calculates live P&L (Profit & Loss) for up to 40 instruments — stocks, ETFs, options, futures, and Forex pairs supported by TradingView. Instead of juggling numerous inputs, you paste your portfolio in CSV format into a single text field, and the script handles the rest. It parses each position and displays a comprehensive table showing the symbol, current price, position value, total P&L, and today’s P&L—all updated in real time.
 Key Features 
 
 CSV Portfolio Input  – Effortlessly import all your positions at once without filling in multiple fields. You can export the position from your broker, save it in the required format, and paste it into this script.  
 Supports Various Asset Classes  – Works with any instrument that TradingView provides data for, including futures, options, and Forex.
 Up to 40 Instruments  – Track a broad and diverse set of holdings in one place.
 Real-Time Updates  – Get immediate feedback on live price changes, total value, and current P&L.
 Today’s P&L  – Monitor your daily performance to gauge short-term trends.
 
 CSV is consumed in the following format:  
 
  Symbol (supported TradingView instruments)
  Entry Price
  Quantity (negative for short position)
  Lot Size (for futures/options, it might not be one) 
 
 For example:  
 AAPL,237,100,1
TSLA,400,-150,1
ESM2025,6000,5,50 
 Planned Enhancements 
 
 Multi-Currency Support  – Automatically convert and display your positions’ values in different currencies.
 Advanced Metrics  – Get deeper insights with calculations for drawdown, Sharpe ratio, and more.
 Risk Management Tools  – Set stop-loss and take-profit levels and receive alerts when thresholds are hit.
 Option Greeks & Margin Calculations  – Manage complex option strategies and track margin requirements.
 
 Questions for You 
 
  What additional features would you like to see?
  Are there any specific metrics or analytics you’d find especially valuable?
  How might this script fit into your current trading workflow?
 
Feel free to share your thoughts and suggestions. Your feedback will help shape future updates and make this tool even more helpful for traders like you!
 Disclaimer 
Please remember that past performance may not be indicative of future results.
Due to various factors, including changing market conditions, the strategy may no longer perform as well as in historical backtesting.
This post and the script don’t provide any financial advice.
Volume Weighted HMA Index | mad_tiger_slayerTitle: 🍉 Volume Weighted HMA Index | mad_tiger_slayer 🐯  
 Description: 
The Volume Weighted HMA Index is a cutting-edge indicator designed to enhance the accuracy and responsiveness of trading signals by combining the power of volume with the Hull Moving Average (HMA). This indicator adjusts the HMA based on volume-weighted price changes, providing faster and more reliable entry and exit signals while reducing the likelihood of false signals.
 Intended and Best Uses: 
 
 Used for Strategy Creation: 
  
 Extremely Quick Entries and Exits 
  
 Intended for Higher timeframe however can be used for scalping paired with additional scripts.
  
 Can be paired to create profitable strategies 
 TREND FOLLOWING NOT MEAN REVERTING!!!! 
 
 [Key Features: 
 
 Volume Integration: Dynamically adjusts the HMA using volume data to prioritize higher-volume bars, ensuring that market activity plays a crucial role in signal generation.
Enhanced Signal Clarity: The indicator calculates precise long and short signals by detecting volume-weighted HMA crossovers.
 Bar Coloring: Visually differentiate bullish and bearish conditions with customizable bar colors, making trends easier to identify.
Custom Signal Plotting: Optional long and short signal markers for a clear visual representation of potential trade opportunities.
 Highly Configurable: Adjust parameters such as volume length and calculation source to tailor the indicator to your trading preferences and strategy.
 
 How It Works: 
 
 Volume Weighting: The indicator calculates the HMA using a volume-weighted price change, amplifying the influence of high-volume periods on the moving average.
 Trend Identification: Crossovers of the volume-weighted HMA with zero determine trend direction, where:
 A bullish crossover signals a long condition.
 A bearish crossunder signals a short condition.
 Visual Feedback: Bar colors and optional signal markers provide real-time insights into trend direction and trading signals.
 
 Use Cases: 
 
 Trend Following: Quickly identify emerging trends with volume-accelerated HMA calculations.
 Trade Confirmation: Use the indicator to confirm the strength and validity of your trade setups.
 Custom Signal Integration: Combine this indicator with your existing strategies to refine entries and exits.
 
 Notes: 
Ensure that your trading instrument provides volume data for accurate calculations. If no volume is available, the script will notify you.
This script works best when combined with other indicators or trading frameworks for a comprehensive market view.
Inspired by the community and designed for traders looking to stay ahead of the curve, the Volume Weighted HMA Index is a versatile tool for traders of all levels.
StockInfo ManualScript Description:   
The  StockInfo Manual  is designed to display detailed stock information directly on the chart for the selected symbol. It processes user-provided input data, including 
 
 stock symbols
 Industries
 Relative Strength (RS) values
 Band information
 
 Key Features: 
1. Symbol-Specific Data Display: Displays information only for the current chart symbol.
2. Customizable Table: Adjust the table's position, text size, colors, and headers to match your preferences.
3. Low RS/Band Conditions: Highlights critical metrics (RS < 50 or Band < 6) with a red background for quick visual cues.
4. Toggle Information: Choose to show or hide RS, Band, and Industry columns based on your needs.
 How to Use the Script: 
1. Use any platform (ex: chartsmaze) to get Industry,RS and Band information of any Stock. Prepare the data as separate column of excel 
2. Configure Inputs:
   - Stock Symbols (`Stock`): Enter a comma-separated list of stock symbols (e.g., 
NSE:ABDL,
NSE:ABFRL,
NSE:ABREL,
NSE:ABSLAMC,
NSE:ACC,
NSE:ACE,
   - Industries (`Industry`): Provide a comma-separated list of industries for the stocks (e.g., 103-Brewerie,
109-Retail-D,
92-Paper & ,
19-Asset Ma,
62-Cement,
58-Industri,
   - Relative Strength (`RS`): Input RS values for each stock (e.g.,
83,
52,
51,
81,
23,
59,
   - Band Information (`Band`): Specify Band values for each stock. Use "No Band" if 10,
No Band,
20,
20,
No Band,
20,
3. Customize the Table:
   -Display Options: Toggle the visibility of `RS`, `Band`, and `Industry` using the input checkboxes.  
   -Position and Appearance: Choose the table's position on the chart (e.g., top-right, bottom-center). Customize text size, background colors, header display, and other visual elements.
4. Interpret the Table:
   - The table will dynamically display information for the current chart symbol only.  
   - If the `RS` is below 50 or the Band is below 6, the corresponding row is highlighted with a red background for immediate attention.
 One need to enter details at least weekly for a correct result 
Stochastic candles "Stochastic Candles" is designed to provide higher timeframe stochastic calculations and enhance the chart with additional visual aids like colored candles and EMA plotting. 
 Features of the Script: 
Higher Timeframe Stochastic Calculation:
This indicator computes the stochastic %K and %D values for a specified higher timeframe and ensures these values are fetched for the higher timeframe data.
Dynamic Label Placement:
The script places labels on the chart displaying the %K and %D values above and below the bars, respectively.
Labels are dynamically deleted after being updated, ensuring only the latest values are visible.
 Candle Coloring: 
Candles are colored blue if %K > %D, yellow if %D > %K, and retain the default color otherwise.
Exponential Moving Average (EMA):
 This indicator work fine . Consolidate market put effects on its performance . 
Customizable MTF Multiple Moving AveragesTitle:
Customizable Multiple Moving Averages with Dynamic Colors
Description:
This script allows you to calculate up to three customizable moving averages, offering the flexibility to choose from multiple moving average types:
SMA (Simple Moving Average)
EMA (Exponential Moving Average)
WMA (Weighted Moving Average)
VWMA (Volume Weighted Moving Average)
SMMA (Smoothed Moving Average)
Key Features:
Separate Timeframe for Each Moving Average:
Each moving average can be calculated on a different timeframe. For instance, you can display a 1D moving average while working on a 4H chart.
Dynamic Colors:
Moving averages dynamically change color based on their trend:
Uptrend Color: When the moving average is increasing compared to the previous bar of its timeframe.
Downtrend Color: When the moving average is decreasing.
Full Customization:
Length: Adjust the period for each moving average.
Source: Choose any price data source (e.g., close, open, high, low).
Colors: Set custom colors for uptrend and downtrend behavior.
Perfect For:
Multi-Timeframe Trend Analysis:
Observe trends from higher timeframes without switching your current chart.
Crossover Strategies:
Combine multiple moving averages to identify entry and exit signals.
How to Use:
Load the Script: Apply it to your chart.
Configure Inputs: Adjust each moving average's settings from the input panel.
Analyze Trends: Visualize dynamic trend movements with easy-to-identify colors.
Example Configuration:
Set MA1 to a 50-period EMA on a 4H timeframe.
Set MA2 to a 100-period SMMA on a 1D timeframe.
Set MA3 to a 200-period VWMA on a 1W timeframe.
[blackat] L1 Funding Bottom Wave█  OVERVIEW 
The script "Funding Bottom Wave" is an indicator designed to analyze market conditions based on multiple smoothed price calculations and specific thresholds. It calculates several values such as B-value, VAR2-value, and additional signals like SK and SD to identify buy/sell levels and reversals, aiding traders in making informed decisions.
█  LOGICAL FRAMEWORK 
The script consists of several main components:
• Input parameters that allow customization of calculation periods and thresholds.
• A custom function funding_wave that computes various financial metrics and conditions.
• Plotting commands to visualize different aspects of those computations.
Data flows from input parameters into the funding_wave function where calculations are performed. These results are then plotted according to specified conditions. The script uses conditional expressions to define when certain plots should appear based on the computed values.
█  CUSTOM FUNCTIONS 
 funding_wave Function: 
This function takes six arguments: close_price, high_price, low_price, open_price, period_b, and period_var2. It performs several calculations including:
• Price range percentage normalized between lowest and highest prices over 60 bars.
• SMA of this value over periods defined by period_b and period_var2.
• Several moving averages (MA), EMAs, and extreme point markers (highest/lowest).
• Multiple condition checks involving these metrics leading to buy/high signal flags.
Returns: An array containing B-value, VAR2-value, SK-value, SD-value, along with various conditional signal indicators.
█  KEY POINTS AND TECHNIQUES 
• Utilizes built-in TA functions (ta.highest, ta.lowest, ta.sma, ta.ema) for smoothing and normalization purposes.
• Implements extensive use of ternary operators and boolean logic to determine plot visibility based on specific criteria.
• Employs column-style plotting which highlights significant transitions in calculated metric levels visually.
• No explicit loops; computations utilize vectorized operations inherent to Pine Script's nature.
█  EXTENDED KNOWLEDGE AND APPLICATIONS 
Potential modifications/extensions include:
• Adding alerts for key threshold crossovers or meeting certain conditions.
• Customizing more sophisticated alert messages incorporating current time and symbol details.
• Incorporating stop-loss/take-profit strategies dynamically adjusted by indicator outputs.
Similar techniques can be applied in:
• Developing robust trend-following systems combining momentum oscillators.
• Enhancing basic price action rulesets with statistical filters derived from historical data behaviors.
• Exploring intraday breakout strategies predicated upon sudden changes in market sentiment captured via volatility spikes.
Related concepts/features:
• Using arrays to encapsulate complex return structures for reusability across scripts/functions.
• Leveraging na effectively within plotting constructs ensures cleaner chart presentation avoiding clutter from irrelevant points.
█  MARKET MEANING OF DIFFERENT COLORED COLUMNS 
Red Columns ("B above Var2"):
•  Market Interpretation:  When the red columns appear, it indicates that the B-value is higher than the VAR2-value. This suggests a strengthening upward trend or consolidation phase where the market might be experiencing buying pressure relative to recent trends.
•  Trading Implication:  Traders may consider this as a potentially bullish sign, indicating strength in the underlying asset.
Green Columns ("B below Var2"):
•  Market Interpretation:  Green columns indicate that the B-value is lower than the VAR2-value. This could suggest downward trend acceleration or weakening buying pressure compared to recent trends.
•  Trading Implication:  Traders might interpret this as a bearish signal, suggesting a possible decline in the market.
Aqua Columns ("SK below SD"):
•  Market Interpretation:  Aqua columns show instances where the SK-value is below the SD-value. This typically signifies that the short-term stochastic oscillator (or similar measure) is signaling oversold conditions but not yet reaching extremes.
•  Trading Implication:  While not necessarily a strong sell signal, aqua columns might prompt traders to look for further confirmation before entering long positions.
Fuchsia Columns ("SK above SD"):
•  Market Interpretation:  Fuchsia columns represent situations where the SK-value exceeds the SD-value. This usually indicates overbought conditions in the near term.
•  Trading Implication:  Traders often view fuchsia columns as cautionary signs, possibly prompting them to exit existing long positions or refrain from adding new ones without further analysis.
Yellow Columns ("High Condition" and "High Condition Both"):
•  Market Interpretation:  Yellow columns occur when either the SK-value or B-value crosses above predefined high thresholds (e.g., 90). If both cross simultaneously, they form "High Condition Both."
•  Trading Implication:  Strongly bullish signals indicating overheated markets prone to corrections. Traders may see this as a good opportunity to take profits or prepare for a pullback/corrective move.
Blue Columns ("Low Condition" and "Low Condition Both"):
•  Market Interpretation:  Blue columns emerge when either the SK-value or B-value drops below predefined low thresholds (e.g., 10). Simultaneous crossing forms "Low Condition Both."
•  Trading Implication:  Potentially bullish reversal setups once the market starts showing signs of bottoming out after being significantly oversold. Traders might use blue columns as entry points for establishing long positions or hedging against anticipated rebounds.
Light Purple Columns ("Low Condition with Reversal" and "Low Condition Both with Reversal"):
•  Market Interpretation:  Light purple columns signify moments when the SK-value or B-value falls below their respective thresholds but has started reversing upwards immediately afterward. If both fall and reverse together, it's denoted as "Low Condition Both with Reversal."
•  Trading Implication:  Suggests a possible early-stage rebound from an extended downtrend or sideways movement. This could be seen as a highly reliable bulls' flag formation setup.
White Columns ("High Condition with Reversal" and "High Condition Both with Reversal"):
•  Market Interpretation:  White columns denote scenarios where the SK-value or B-value breaches high thresholds (e.g., 90) but begins descending shortly thereafter. Both simultaneously crossing leads to "High Condition Both with Reversal."
•  Trading Implication:  Indicative of peak overbought conditions followed quickly by exhaustion in buying interest. This warns traders about potential imminent retracements or pullbacks, prompting exits or short positions.
█  SUMMARY TABLE OF COLUMN COLORS AND THEIR MEANINGS 
Color	Type	Market Interpretation	Trading Implication
Red	B above Var2	Strengthening upward trend/consolidation	Bullish sign
Green	B below Var2	Downward trend acceleration/weakening buying pressure	Bearish sign
Aqua	SK below SD	Oversold conditions but not extreme	Cautionary signal
Fuchsia	SK above SD	Overbought conditions	Take profit/precaution
Yellow	High Condition / High Condition Both	Overheated market, likely correction coming	Good time to exit/additional selling
Blue	Low Condition / Low Condition Both	Possible bull/rebound setup	Entry point/hedging
Light Purple	Low Condition with Reversal / Low Condition Both with Reversal	Early-stage rebound from downtrend	Reliable bulls' flag formation
White	High Condition with Reversal / High Condition Both with Reversal	Peak overbought with imminent retracement	Exit positions/warning
Understanding these color-coded signals can help traders make more informed decisions, whether for entry, exit, or risk management in trading strategies. Each set of colors provides distinct insights into market dynamics and trends, aiding in effective execution of trade plans.
Strategie Bollinger Bands buy & sellMiddle Band (Basis): Calculated using a Simple Moving Average (SMA) over a user-defined period.
Upper Band: The middle band plus the standard deviation of the price multiplied by a user-defined multiplier.
Lower Band: The middle band minus the standard deviation of the price multiplied by the same multiplier.
User Inputs:
Length: The number of periods used for the SMA and standard deviation (default: 20).
Deviation: The multiplier for the standard deviation to calculate the upper and lower bands (default: 2.0).
Buy and Sell Signals:
Buy Signal: Generated when the price crosses above the lower band, indicating a potential oversold condition.
Sell Signal: Generated when the price crosses below the upper band, indicating a potential overbought condition.
Visual Markers:
Buy Signals: Displayed below the price bars as green labels with the text "BUY."
Sell Signals: Displayed above the price bars as red labels with the text "SELL."
The Bollinger Bands (upper, middle, and lower) are plotted directly on the price chart for easy visualization.
How to Use the Script:
Customize Parameters:
Modify the length and deviation inputs to adapt to different market conditions or timeframes.
Interpret Signals:
A BUY signal indicates a possible reversal or upward movement from the lower band.
A SELL signal suggests a potential price decline from the upper band.
Combine with Other Indicators:
While effective in certain conditions, this strategy performs better when combined with other technical tools, such as RSI or MACD, to confirm trends and avoid false signals.
Limitations:
This script assumes that price will revert to the mean, which may not hold during strong trends or highly volatile conditions.
It is not a standalone trading system and should be backtested and optimized before applying to real trading.
Twiggs Money FlowTwiggs Money Flow (TMF) 
 This indicator is an implementation of the Twiggs Money Flow (TMF), a volume-based tool designed to measure buying and selling pressure over a specified period. TMF is an enhancement of Chaikin Money Flow (CMF), utilizing more sophisticated smoothing techniques for improved accuracy and reduced noise. This version is highly customizable and includes advanced features for both new and experienced traders. 
 What is Twiggs Money Flow? 
Twiggs Money Flow was developed by Colin Twiggs to provide a clearer picture of market momentum and the balance between buyers and sellers. It uses a combination of price action, trading volume, and range calculations to assess whether a market is under buying or selling pressure.
Unlike traditional volume indicators, TMF incorporates Weighted Moving Averages (WMA) by default but allows for other moving average types (SMA, EMA, VWMA) for added flexibility. This makes it adaptable to various trading styles and market conditions.
 Features of This Script: 
 Customizable Moving Average Types: 
Select from  SMA ,  EMA ,  WMA , or  VWMA  to smooth volume and price-based calculations.
Tailor the indicator to align with your trading strategy or the asset's behavior.
 Optional HMA Smoothing: 
Apply Hull Moving Average (HMA) smoothing for a cleaner, faster-reacting TMF line.
Perfect for traders who want to reduce lag and capture trends earlier.
Dynamic Thresholds for Signal Filtering:
Set user-defined thresholds for Long (LT) and Short (ST) signals to highlight significant momentum.
 Focus on actionable trends by ignoring noise around neutral levels.
Bar Coloring for Visual Clarity: 
 Automatically colors your chart bars based on TMF values: 
Aqua for strong bullish signals (above the long threshold).
Fuchsia for strong bearish signals (below the short threshold).
Gray for neutral or undecided market conditions.
Ensures that trend direction and strength are visually intuitive.
 Configurable Lookback Period: 
Adjust the sensitivity of TMF by customizing the length of the lookback period to suit different timeframes and market conditions.
 How It Works: 
True Range Calculation: The script determines the high, low, and close range to calculate buying and selling pressure.
 Adjusted Volume:  Incorporates the relationship between price and volume to gauge whether trading activity is favoring buyers or sellers.
 Weighted Moving Averages (WMAs):  Smooths both volume and adjusted volume values to eliminate erratic fluctuations.
 TMF Line:  Computes the ratio of adjusted volume to total volume, representing the net buying/selling pressure as a percentage.
 HMA Option (if enabled):  Smooths the TMF line further to reduce lag and enhance trend identification.
 Bar Coloring Logic: 
Bars are colored dynamically based on TMF values, thresholds, and smoothing preferences.
Provides an at-a-glance understanding of market conditions.
 Input Parameters: 
 Lookback Period:  Defines the number of bars used to calculate TMF (default: 21).
 Use HMA Smoothing:  Toggle Hull Moving Average smoothing (default: true).
 HMA Smoothing Length:  Length of the HMA smoothing period (default: 14).
 Moving Average Type:  Select SMA, EMA, WMA, or VWMA (default: WMA).
 Long Threshold (LT):  Threshold value above which a long signal is considered (default: 0).
 Short Threshold (ST):  Threshold value below which a short signal is considered (default: 0).
 How to Use It: 
 Confirm Trends:  TMF can validate trends by identifying periods of sustained buying or selling pressure.
 Divergence Signals:  Watch for divergences between price and TMF to anticipate potential reversals.
 Filter Trades:  Use the thresholds to ignore weak signals and focus on strong trends.
 Combine with Other Indicators:  Pair TMF with trend-following or momentum indicators (e.g., RSI, Bollinger Bands) for a comprehensive trading strategy.
 Example Use Cases: 
Spotting breakouts when TMF crosses above the long threshold.
Identifying sell-offs when TMF dips below the short threshold.
Avoiding sideways markets by ignoring neutral (gray) bars.
 Notes: 
This indicator is highly customizable, making it versatile across different assets (e.g., stocks, crypto, forex).
While the default settings are robust, tweaking the lookback period, moving average type, and thresholds is recommended for different trading instruments or strategies.
 Always backtest thoroughly before applying the indicator to live trading. 
This version of Twiggs Money Flow goes beyond standard implementations by offering advanced smoothing, custom thresholds, and enhanced visual feedback to give traders a competitive edge.
 Add it to your charts and experience the power of volume-driven analysis!
Fibonacci Confluence Toolkit [LuxAlgo]The  Fibonacci Confluence Toolkit  is a technical analysis tool designed to help traders identify potential price reversal zones by combining key market signals and patterns. It highlights areas of interest where significant price action or reactions are anticipated, automatically applies Fibonacci retracement levels to outline potential pullback zones, and detects engulfing candle patterns.
Its unique strength lies in its reliance solely on price patterns, eliminating the need for user-defined inputs, ensuring a robust and objective analysis of market dynamics.
🔶  USAGE 
  
The script begins by detecting CHoCH (Change of Character) points—key indicators of shifts in market direction. This script integrates the principles of pure price action as applied in  Pure-Price-Action-Structures , where further details on the detection process can be found.
  
The detected CHoCH points serve as the foundation for defining an Area of Interest (AOI), a zone where significant price action or reactions are anticipated.
  
As new swing highs or lows emerge within the AOI, the tool automatically applies Fibonacci retracement levels to outline potential retracement zones. This setup enables traders to identify areas where price pullbacks may occur, offering actionable insights into potential entries or reversals.
  
Additionally, the toolkit highlights engulfing candle patterns within these zones, further refining entry points and enhancing confluence for better-informed trading decisions based on real-time trend dynamics and price behavior.
  
🔶  SETTINGS 
🔹  Market Patterns 
 
 Bullish Structures: Enable or disable all bullish components of the indicator.
 Bearish Structures: Enable or disable all bearish components of the indicator.
 Highlight Area of Interest: Toggle the option to highlight the Areas of Interest (enabled or disabled).
 CHoCH Line: Choose the line style for the CHoCH (Solid, Dashed, or Dotted).
 Width: Adjust the width of the CHoCH line.
 
🔹  Retracement Levels 
 
 Choose which Fibonacci retracement levels to display (e.g., 0, 0.236, 0.382, etc.).
 
🔹  Swing Levels & Engulfing Patterns 
 
 Swing Levels: Select how swing levels are marked (symbols like ◉, △▽, or H/L).
 Engulfing Candle Patterns: Choose which engulfing candle patterns to detect (All, Structure-Based, or Disabled).
 
🔶  RELATED SCRIPTS 
 
 Pure-Price-Action-Structures. 
Crypto Wallets Profitability & Performance [LuxAlgo]The  Crypto Wallets Profitability & Performance  indicator provides a comprehensive view of the financial status of cryptocurrency wallets by leveraging on-chain data from IntoTheBlock. It measures the percentage of wallets profiting, losing, or breaking even based on current market prices.
Additionally, it offers performance metrics across different timeframes, enabling traders to better assess market conditions.
This information can be crucial for understanding market sentiment and making informed trading decisions.
🔶  USAGE 
  
🔹  Wallets Profitability 
This indicator is designed to help traders and analysts evaluate the profitability of cryptocurrency wallets in real-time. It aggregates data gathered from the blockchain on the number of wallets that are in profit, loss, or breaking even and presents it visually on the chart. 
Breaking even line demonstrates how realized gains and losses have changed, while the profit and the loss monitor unrealized gains and losses.
  
The signal line helps traders by providing a smoothed average and highlighting areas relative to profiting and losing levels. This makes it easier to identify and confirm trading momentum, assess strength, and filter out market noise.
  
🔹  Profitability Meter 
The Profitability Meter is an alternative display that visually represents the percentage of wallets that are profiting, losing, or breaking even.
  
🔹  Performance 
The script provides a view of the financial health of cryptocurrency wallets, showing the percentage of wallets in profit, loss, or breaking even. By combining these metrics with performance data across various timeframes, traders can gain valuable insights into overall wallet performance, assess trend strength, and identify potential market reversals.
  
🔹  Dashboard 
The dashboard presents a consolidated view of key statistics. It allows traders to quickly assess the overall financial health of wallets, monitor trend strength, and gauge market conditions.
  
🔶  DETAILS 
🔹  The Chart Occupation Option 
The chart occupation option adjusts the occupation percentage of the chart to balance the visibility of the indicator.
  
🔹  The Height in Performance Options 
Crypto markets often experience significant volatility, leading to rapid and substantial gains or losses. Hence, plotting performance graphs on top of the chart alongside other indicators can result in a cluttered display. The height option allows you to adjust the plotting for balanced visibility, ensuring a clearer and more organized chart.
  
🔶  SETTINGS 
The script offers a range of customizable settings to tailor the analysis to your trading needs.
 
 Chart Occupation %: Adjust the occupation percentage of the chart to balance the visibility of the indicator.
 
🔹  Profiting Wallets 
 
 Profiting Percentage: Toggle to display the percentage of wallets in profit.
 Smoothing: Adjust the smoothing period for the profiting percentage line.
 Signal Line: Choose a signal line type (SMA, EMA, RMA, or None) to overlay on the profiting percentage.
 
🔹  Losing Wallets 
 
 Losing Percentage: Toggle to display the percentage of wallets in loss.
 Smoothing: Adjust the smoothing period for the losing percentage line.
 Signal Line: Choose a signal line type (SMA, EMA, RMA, or None) to overlay on the losing percentage.
 
🔹  Breaking Even Wallets 
 
 Breaking-Even Percentage: Toggle to display the percentage of wallets breaking even.
 Smoothing: Adjust the smoothing period for the breaking-even percentage line.
 
🔹  Profitability Meter 
 
 Profitability Meter: Enable or disable the meter display, set its width, and adjust the offset.
 
🔹  Performance 
 
 Performance Metrics: Choose the timeframe for performance metrics (Day to Date, Week to Date, etc.).
 Height: Adjust the height of the chart visuals to balance the visibility of the indicator.
 
🔹  Dashboard 
 
 Block Profitability Stats: Toggle the display of profitability stats.
 Performance Stats: Toggle the display of performance stats.
 Dashboard Size and Position: Customize the size and position of the performance dashboard on the chart.
 
🔶  RELATED SCRIPTS 
 
 Market-Sentiment-Technicals 
 Multi-Chart-Widget 
Consecutive CandlesTrading as Easy as One, Two, and Three
Unlock the power of simplicity in trading with this innovative script inspired by KepalaBesi. Designed for traders of all levels, this script provides a user-friendly approach to market analysis, enabling you to make informed trading decisions effortlessly.
Key Features:
Simplified Signals: Receive clear buy and sell signals based on robust technical indicators. The script streamlines your trading process, allowing you to focus on execution rather than analysis.
Customizable Settings: Tailor the script to fit your trading style. Adjust parameters to suit your risk tolerance and market preferences, ensuring a personalized trading experience.
Visual Clarity: Benefit from intuitive visual cues on your chart, making it easy to identify optimal entry and exit points. The clean interface helps you make quick decisions without confusion.
Whether you’re a seasoned trader or just starting, "Trading as Easy as One, Two, and Three" simplifies your trading journey, turning complex strategies into straightforward actions. Embrace a more efficient way to trade and elevate your performance in the markets!
Get Started Today!
Join the community of traders who have discovered the ease of trading with KepalaBesi's inspired script. Elevate your trading experience and achieve your financial goals with confidence!






















